home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bc.postinst < prev    next >
Text File  |  2009-09-20  |  628b  |  34 lines

  1. #!/bin/sh
  2. #
  3. # This is the postinst script for the Debian GNU/Linux bc package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6. # Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
  7.  
  8. set -e
  9.  
  10. # Automatically added by dh_installmenu
  11. if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
  12.     update-menus
  13. fi
  14. # End automatically added section
  15.  
  16.  
  17. case "$1" in
  18.     configure)
  19. #     if [ -x /usr/bin/update-menus ]
  20. #     then
  21. #         update-menus 
  22. #     fi
  23.         ;;
  24.     abort-upgrade|abort-remove|abort-deconfigure)
  25.     ;;
  26.     *)
  27.     echo "postinst called with unknown argument \`$1'" >&2
  28.     ;;
  29. esac
  30.  
  31.  
  32.  
  33.  
  34.